home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2004 July / APC0407D2.iso / workshop / onlineco / files / ImageMagick-6.0.1-Q16-windows-dll.exe / {app} / include / magick / mogrify.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-02-21  |  536 b   |  22 lines

  1. /*
  2.   Image Command Methods.
  3. */
  4. #ifndef _MAGICK_MOGRIFY_H
  5. #define _MAGICK_MOGRIFY_H
  6.  
  7. #if defined(__cplusplus) || defined(c_plusplus)
  8. extern "C" {
  9. #endif
  10.  
  11. extern MagickExport unsigned int
  12.   MogrifyImage(const ImageInfo *,const int,char **,Image **),
  13.   MogrifyImageCommand(ImageInfo *,int,char **,char **,ExceptionInfo *),
  14.   MogrifyImageList(const ImageInfo *,const int,char **,Image **),
  15.   MogrifyImages(const ImageInfo *,const int,char **,Image **);
  16.  
  17. #if defined(__cplusplus) || defined(c_plusplus)
  18. }
  19. #endif
  20.  
  21. #endif
  22.